home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / shrlk201.zip / _SETUP.1 / Help.h < prev    next >
C/C++ Source or Header  |  1997-07-22  |  919b  |  28 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef HelpH
  3. #define HelpH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include <vcl\ExtCtrls.hpp>
  10. //---------------------------------------------------------------------------
  11. class TfrmAboutTester : public TForm
  12. {
  13. __published:    // IDE-managed Components
  14.     TPanel *Panel1;
  15.     TLabel *Label1;
  16.     TLabel *Label2;
  17.     TLabel *Label3;
  18.     TImage *Image1;
  19.     TButton *btnOk;
  20. private:    // User declarations
  21. public:        // User declarations
  22.     __fastcall TfrmAboutTester(TComponent* Owner);
  23. };
  24. //---------------------------------------------------------------------------
  25. extern TfrmAboutTester *frmAboutTester;
  26. //---------------------------------------------------------------------------
  27. #endif
  28.